home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 37 / CD Expert nº 37.iso / LastCall / lastcall.exe / stuff / lastcall.dxr / 00064_exit screen.ls < prev    next >
Encoding:
Text File  |  2000-03-27  |  219 b   |  20 lines

  1. property pTimer
  2.  
  3. on beginSprite
  4.   pTimer = now()
  5. end
  6.  
  7. on exitFrame
  8.   if (ticksSince(pTimer) < seconds(3)) and not (the mouseDown) then
  9.     go(the frame)
  10.   end if
  11. end
  12.  
  13. on keyDown
  14.   go("out")
  15. end
  16.  
  17. on idle
  18.   nothing()
  19. end
  20.